home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_show / hello_world.e < prev    next >
Text File  |  2000-03-25  |  446b  |  23 lines

  1. class HELLO_WORLD
  2. --
  3. -- The "Hi World program" for SmallEiffel :-)
  4. --
  5. -- To compile type command : compile hello_world
  6. -- Run with command : a.out
  7. --
  8. -- To compile an optimized version type : compile hello_world -boost -O2
  9. --
  10. -- To produce Java bytecode : compile -o hello hello_world
  11. -- To run the Java bytecode : java hello
  12. --
  13. creation make
  14.  
  15. feature
  16.  
  17.    make is
  18.       do
  19.          io.put_string("Hello World.%N");
  20.       end;
  21.  
  22. end -- HELLO_WORLD
  23.